Retrieves the length, in characters, of the text from the specified part of a status window.
#Include <GuiStatusBar.au3>
_GUICtrlStatusBarGetTextLength ($h_StatusBar [, $i_Part = 0 ] )
Parameters
$h_StatusBar | The Control Id (will be converted to hWnd) |
$i_Part | Nubmer of the part to retrieve length from (zero based) (Default: 0) |
Return Value
Text Length
Remarks
None.
Related
_GUICtrlStatusBarCreate, _GUICtrlStatusBarSetText
Example
Opt("MustDeclareVars", 1)
#include <GUIConstants.au3>
#Include <GuiStatusBar.au3>
Local $gui, $StatusBar1, $msg, $lbl_Info
Local $a_PartsRightEdge[3] = [100, 350, -1]
Local $a_PartsText[3] = ["New Text", "More Text", "Even More Text"]
;================================================================
; Example 1 - Using AutoIt Control
;================================================================
$gui = GUICreate("Status Bar Get Text Length", 500, -1, -1, -1, $WS_SIZEBOX)
$StatusBar1 = _GUICtrlStatusBarCreate($gui, $a_PartsRightEdge, $a_PartsText)
$lbl_Info = GUICtrlCreateLabel("Text Length of 3rd Part: " & _GUICtrlStatusBarGetTextLength($StatusBar1, 2), 10, 10, 150, 20)
GUISetState(@SW_SHOW)
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_RESIZED
_GUICtrlStatusBarResize($StatusBar1)
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case Else
;;;;;
EndSelect
WEnd
GUIDelete()
;================================================================
; Example 2 - External Control
;================================================================
Opt("WinTitleMatchMode", 4)
Local $h_win = WinGetHandle("classname=SciTEWindow")
Local $h_status = ControlGetHandle($h_win, "", "msctls_statusbar321")
Local $v_rect = _GUICtrlStatusBarGetText($h_status)
ConsoleWrite("Text: " & _GUICtrlStatusBarGetTextLength($h_status) & @LF)